找传奇、传世资源到传世资源站!

TCP 通信(在线聊天以及文件发送)示例源码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

from clipboard客户端:delegate void AIQIYI(string str);
        private byte[] data = { };

        public frmClient()
        {
            InitializeComponent();
            TextBox.CheckForIllegalCrossThreadCalls = false;
        }

        Thread threadClient = null; // 创建用于接收服务端消息的 线程;
        Socket sockClient = null;
        private void btnConnect_Click(object sender, EventArgs e)
        {
            IPAddress ip = IPAddress.Parse(txtIp.Text.Trim());
            IPEndPoint endPoint=new IPEndPoint (ip,int.Parse(txtPort.Text.Trim()));
            sockClient = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            try
            {
                ShowMsg("与服务器连接中……");
                sockClient.Connect(endPoint);
                
            }
            catch (SocketException se)
            {
                MessageBox.Show(se.Message);
                return;
                //this.Close();
            }
            ShowMsg("与服务器连接成功!!!");
            threadClient = new Thread(RecMsg);
            threadClient.IsBackground = true;
            threadClient.Start();

        }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复